-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complete the set of trunc/floor/ceil lemmas #1531
Conversation
6616166
to
6a18846
Compare
classical/mathcomp_extra.v
Outdated
@@ -512,82 +542,258 @@ Qed. | |||
|
|||
End order_min. | |||
|
|||
Lemma intrD1 {R : ringType} (i : int) : i%:~R + 1 = (i + 1)%:~R :> R. | |||
Lemma intr1 {R : ringType} (i : int) : i%:~R + 1 = (i + 1)%:~R :> R. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should rather be be addz1r
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we would have?
Lemma addzr1 {R : ringType} (i : int) : i%:~R + 1 = (i + 1)%:~R :> R.
Lemma addz1r {R : ringType} (i : int) : 1 + i%:~R = (1 + i)%:~R :> R.
Not so convinced since the integer addition is on the RHS of the equality.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Anyway, FYI, it was decided yesterday to drop that commit from the current PR.
5d92eaa
to
fda93d2
Compare
similarly to intr_int or natr_nat already in mathcomp
fda93d2
to
f718ff3
Compare
f718ff3
to
465cfa4
Compare
This implements what was decided during last sharing day and CI is green so let's merge. |
Motivation for this change
Complete the set of lemmas about trunc/ceil/floor before backporting them to MathComp (c.f. math-comp/math-comp#1359 )
Checklist
CHANGELOG_UNRELEASED.md
added corresponding documentation in the headersReference: How to document
Merge policy
As a rule of thumb:
all compile are preferentially merged into master.
Reminder to reviewers